home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / WebSites / MailingLists / AMOSLIST.0699 / 000085_nobody_Sun Jun 20 14:32:36 1999.msg < prev    next >
Internet Message Format  |  1999-07-02  |  4KB

  1. Received: from onelist.com (pop.onelist.com [209.207.164.237])
  2.     by osf1.gmu.edu (8.8.8/8.8.8) with SMTP id OAA29775
  3.     for <mcox4@osf1.gmu.edu>; Sun, 20 Jun 1999 14:32:35 -0400 (EDT)
  4. Received: (qmail 29477 invoked by alias); 20 Jun 1999 18:32:30 -0000
  5. Received: (qmail 29466 invoked from network); 20 Jun 1999 18:32:29 -0000
  6. Received: from unknown (HELO mail.enterprise.net) (194.72.192.18) by pop.onelist.com with SMTP; 20 Jun 1999 18:32:29 -0000
  7. Received: from enterprise.net (andrewcrowe@max04-037.enterprise.net [194.72.196.157]) by mail.enterprise.net (8.8.5/8.8.5) with SMTP id TAA23009 for <amos-list@onelist.com>; Sun, 20 Jun 1999 19:32:28 +0100 (GMT/BST)
  8. From: Andrew Crowe <andrewcrowe@enterprise.net>
  9. To: amos-list@onelist.com
  10. Date: Sun, 20 Jun 1999 19:31:21 +0000
  11. Message-ID: <yam7840.1081.1197794752@mail.enterprise.net>
  12. In-Reply-To: <Pine.GSO.3.95.990620113401.26663A-100000@harper.uchicago.edu>
  13. X-Mailer: YAM 2.0Preview7 [020] - Amiga Mailer by Marcel Beck - http://www.yam.ch
  14. Mailing-List: list amos-list@onelist.com; contact amos-list-owner@onelist.com
  15. Delivered-To: mailing list amos-list@onelist.com
  16. Precedence: bulk
  17. List-Unsubscribe: <mailto:amos-list-unsubscribe@ONElist.com>
  18. Reply-to: amos-list@onelist.com
  19. Mime-Version: 1.0
  20. Content-Type: text/plain
  21. Subject: Re: [amos-list] Amcaf.lha??? Sam Raw???
  22. Status: O
  23. X-Status: 
  24.  
  25. From: Andrew Crowe <andrewcrowe@enterprise.net>
  26.  
  27. Hi Everybody,
  28.  
  29. > 2) Sam Raw ain't doing it...
  30. > even copying the text str8 out of the manual Sam Raw just plays garbage.
  31. > I know I am loading the samples right because loading one then saving it
  32. > to ram: then reloading in a MOD prog. works.
  33. > I have:
  34. > reserve as work 10,120000
  35. > bload "ram:sound",start(10) : rem sample is <120,000 bytes big 
  36. > Sam Raw 15,start(10),length(10),8000
  37. > nothing, just looping noise.
  38. > well any ideas??
  39.  
  40. > I want to use Sam Raw so i can put the samples in Fast Ram, leaving plenty
  41. > of Chip free for animations...
  42.  
  43.    The problem is simple : you *CAN'T *play samples from fast ram, under any
  44. circumstances. You *must* have the sound in chip mem or the custom chips
  45. can't access it.
  46.  
  47.    The only way to get round this is to have all the samples stored in fast
  48. ram, and then copy it temperaraly to chip ram to play it.
  49.  
  50. Something like:
  51.  
  52. reserve as work 10,120000
  53. bload "ram:sound",start(10) : rem sample is <120,000 bytes big 
  54.  
  55. _SAMPLAY[10,8000,15]
  56.  
  57. Procedure _SAMPLAY[bank,rate,chan]
  58.  
  59.    reserve as chip work 1000,length(bank)
  60.    copy start(bank),start(bank)+length(bank) to start(1000)
  61.  
  62.    sam raw chan,start(bank),length(bank),rate
  63.  
  64. End proc
  65.  
  66.  
  67. there you go, I've just typed it in to YAM so I'm not sure it'll work, but
  68. you get the idea ;)
  69.  
  70. See ya.
  71. -- 
  72.        Manta Soft  -  Amiga programing & web page designing
  73.           Http://mantasoft.aio.co.uk/      ICQ: 21829166
  74. Homepage updated 24/5/99 --- Bomberman clone update & site changes
  75.   - ------------------- Quote of the day: -------------------- -
  76. Annie Hall (1977) remains Woody Allen's highest grossing movie,
  77. making a $36 million profit at last count.
  78. --The Miscellanea Digest
  79.  
  80.  
  81. ------------------------------------------------------------------------
  82. Last chance to earn $5000 for your charity of choice!
  83. http://www.onelist.com
  84. Deadline for "GROW TO GIVE" is June 19.  See homepage for details.
  85. ------------------------------------------------------------------------
  86. Official AMOS WWW: http://members.xoom.com/AmosFactory/front.html